home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib7 / v_09_09 / 9n09020c < prev    next >
Encoding:
Text File  |  1995-11-01  |  460 b   |  15 lines

  1.  
  2. void help(void)
  3. {
  4.     printf("\n   The action codes are:\n");
  5.     printf("\t0 - Exit this program\n");
  6.     printf("\t1 - Produce this help message\n");
  7.     printf("\t2 - Add a new node to the list\n");
  8.     printf("\t3 - Display a user-selected node\n");
  9.     printf("\t4 - Remove a user-selected node\n");
  10.     printf("\t5 - Show all nodes in ascending order\n");
  11.     printf("\t6 - Show all nodes in descending order\n");
  12.     printf("\t7 - Count the number of nodes\n");
  13. }
  14.  
  15.